home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / prog / atari / c / du_lib / timer.c < prev    next >
C/C++ Source or Header  |  1995-07-10  |  315b  |  21 lines

  1. /*
  2.   DU_LIB v2
  3.   Gem Window Management & Dialog Library For Lattice C
  4.   ½1994, by Craig Graham.
  5.   
  6.   Based on the DU_LIBv1 Library for HiSoft Basic.
  7. */
  8.  
  9. /*
  10.     Timer Driven Routine handling
  11. */
  12.  
  13. #include "dulib.h"
  14.  
  15. void Set_timer_callback(short t, CallBack c)
  16. {
  17.     timer_rate=t;
  18.     timer_callback=c;
  19. }
  20.  
  21.